Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#️⃣연관된 이슈
#4
📝작업 내용
GET /gist
사용자의 모든 gist 가져오기
GET /gist/Last
사용자의 가장 최근 gist 가져오기
GET /gist/user
사용자 정보 가져오기
GET /gist/:id
해당 id의 gist 정보 가져오기
GET /gist/:gist_id/commits, /gist/:gist_id/commits/:pageIdx
gist의 commit 목록 가져오기
GET /gist/:gist_id/commit/:id
특정 commit의 file들 가져오기
GET /gist/:gist_id/comments
gist의 comment들 가져오기
Post /gist/:gist_id/comment
Body{
"comment": string
}
comment 생성
PATCH /gist/:gist_id/comment/:comment_id
Body{
"comment": string
}
특정 comment의 내용 수정
boolean
DELETE /gist/:gist_id/comment/:comment_id
특정 comment 삭제
boolean
스크린샷 (선택)
예시로 commit 목록 가져오기 사진 첨부합니다.
💬리뷰 요구사항(선택)